home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / lib / tex / inputs / pslatex / cnvfonts < prev    next >
Text File  |  1991-05-20  |  384b  |  21 lines

  1. #!/bin/sh
  2.  
  3. echo 'This script will convert all the TFM files in this directory'
  4. echo 'from a design size of 1pt to a design size of 10pt.'
  5. echo
  6. echo -n 'Hit return to contine, ^C to abort > '
  7. read reply
  8.  
  9. for i in *.tfm
  10. do
  11.     BASE=`basename $i .tfm`
  12.     echo Doing $BASE
  13.     tftopl $i $BASE.pl
  14.     ed - $BASE.pl <<\xxx
  15. g/(DESIGNSIZE R 1.0)/s//(DESIGNSIZE R 10.0)/
  16. w
  17. q
  18. xxx
  19.     pltotf $BASE.pl $i
  20. done
  21.